home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / mail / YAMscripts.readme < prev    next >
Text File  |  1997-07-13  |  7KB  |  165 lines

  1. Short:    Useful ARexx scripts for YAM (rel 6)
  2. Author:   knikulai@utu.fi
  3. Uploader: knikulai@utu.fi
  4. Type:     comm/mail
  5. Replace:  YAMscripts.lha
  6.  
  7. Long:
  8.  
  9. This archive contains several AREXX-scripts I've written for Marcel Becks's
  10. (mbeck@access.ch) great mail program YAM.  They were written for version
  11. 1.3.4 and might not work with older versions.  Many of them require reqtools
  12. and rexxreqtools libraries.
  13.  
  14. If you have any questions, comments or bugs to report, send mail to knikulai@utu.fi
  15.  
  16. These and other scripts can also be found on my ARexx page at
  17. http://www.utu.fi/~knikulai/ARexx.html
  18.  
  19. Or if you want to test the Fileserver2 script, send mail to knikulai@utu.fi with
  20. word 'request' as subject.  Then put word 'help' in the message body and you'll
  21. receive instruction on how to get scripts, samples and other files which are
  22. available.
  23.  
  24. AddXHeaders.rexx
  25. ----------------
  26.   Reads a file and adds the contents to the headers of all messages in 
  27.   the outgoing folder.  Not very useful in my opinion, but several people
  28.   requested for it, so here it is :-)
  29.  
  30. CheckNewMail.rexx (v1.4)
  31. ------------------------
  32.   Scans all your folders and displays which of them have new or unread
  33.   messages in them.  Very useful, if you have lots of folders; just let
  34.   the script scan your messages and select the folder you want to read
  35.   next from a requester.  The script is pretty fast compared to earlier
  36.   versions.
  37.  
  38. DeleteOld.rexx
  39. --------------
  40.   Removes old messages from the folder automatically.
  41.  
  42. FixQuotes.rexx
  43. --------------
  44.   This script changes quote marks which aren't supported by all fonts
  45.   to ordinary quotes.  No more annoying squares in the messages...
  46.  
  47. Fileserver2.rexx 
  48. ---------------
  49.   You can create an automated filearchive with this script.  Others can 
  50.   get files from it by sending a request in e-mail.  The script will reply
  51.   and attach the required file in the reply.  It can also send a helpfile
  52.   or a current index of the archive.  This version is much more versatile
  53.   than the old script, it can for example display contents of archived
  54.   files. 
  55.  
  56. GetAddresses.rexx (v1.1)
  57. ------------------------
  58.   Scans all messages in the current folder for e-mail addresses and 
  59.   displays them in a requester.  From that requester addresses can be
  60.   added to the YAM addresbook.
  61.  
  62. GrabURL.rexx (v1.2)
  63. -------------------
  64.   Scans the selected message and displays all http: and ftp: references
  65.   in a requester.  You can select one of them and send it to your browser.
  66.   Currently supported browsers are AWeb, IBrowse and Voyager.
  67.  
  68. GrabAllURLs.rexx (v1.1) & MakeHotlist.rexx
  69. ------------------------------------------
  70.   These scripts scan all _read_ messages in the current folder for http: 
  71.   and ftp: references like the above script.  The first then displays a
  72.   requester and second creates a HTML-file and sends it to your browser.
  73.  
  74. Join.rexx (v1.1)
  75. ----------------
  76.   Joins and uudecodes multipart messages.  Can be used with for example
  77.   many ftp-mailers and SplitNMail.rexx.
  78.  
  79. PGPRead.rexx & PGPWrite.rexx
  80. ----------------------------
  81.   These scripts try to make usng PGP a bit simpler and quicker.
  82.  
  83. Search.rexx (v1.1)
  84. ------------------
  85.   Search current folder for a word.
  86.  
  87. SplitNMail.rexx
  88. ---------------
  89.   This script will split a long file into several posts and mail them.
  90.   This is useful for posting long files to many mailing lists and newsgroups.
  91.  
  92. Tagline2.rexx
  93. -------------
  94.   Changes the editor button to 'add tagline' -button .  Supports multiple
  95.   tagfiles and multi-line tags.
  96.  
  97. Unread.rexx
  98. -----------
  99.   Simpy marks the current message as unread.
  100.  
  101. WholeStory.rexx (v1.3)
  102. ----------------------
  103.   Combines multipart messages.  I use this script to join X-Files fanfic
  104.   mailings into a single file.
  105.  
  106. YAMMail.rexx (v1.1)
  107. -------------------
  108.   Use YAM to send mail from AWeb.  Asks, if you want to include the current
  109.   page.  This version can get the subject from the URL.  I'm not sure how
  110.   it will work with the commercial version, since I only have the old demo.
  111.  
  112.  
  113. What to do, when the scripts will not work?
  114. -------------------------------------------
  115.   First of all you need to check a few things:
  116.     - Do you have YAM running?  The scripts can be started from shell or
  117.       whatever program you are using, but they need to have YAM running first.
  118.     - Do you have ARexx running?  If not, you might want to add line
  119.       'run <>nil: RexxMast' to your startup-sequence
  120.     - Do you have rx-command in sys:rexxc, where YAM looks for it?
  121.     - Do you have all the required libraries? 
  122.     - Did you configure the script correctly?  This means editing path and 
  123.       filenames in the script and setting the correct path & command in
  124.       YAM:.config
  125.  
  126.   If you still have problems, keep YAM running in the background and execute
  127.   the script from shell by typing 'rx yam:rexx/scriptname'.  That way you
  128.   will see the error message which usually is 'Missing quote' or 'Unfinished
  129.   comment' which are both really easy to correct.
  130.  
  131.   If you still can't get a script work, execute it from shell by typing
  132.   'rx >ram:error yam:rexx/scriptname' and send the created file ram:error
  133.   to knikulai@utu.fi and I'll try to fix the problem.
  134.  
  135. Have fun!
  136.  
  137.  
  138. ============================= Archive contents =============================
  139.  
  140. Original  Packed Ratio    Date     Time    Name
  141. -------- ------- ----- --------- --------  -------------
  142.     1383     711 48.5% 26-Nov-96 18:24:34  DeleteOld.rexx
  143.     3174    1330 58.0% 02-Dec-96 18:58:40  SplitNMail.rexx
  144.      898     504 43.8% 22-Nov-96 15:38:38  YAMmail.rexx
  145.      235     174 25.9% 14-Nov-96 13:56:38  Unread.rexx
  146.     4311    1837 57.3% 20-Feb-97 12:23:04  CheckNewMail.rexx
  147.     3702    1590 57.0% 05-Feb-97 20:16:42  GetAddresses.rexx
  148.     2941    1266 56.9% 05-Feb-97 19:36:48  search.rexx
  149.     4318    1829 57.6% 20-Feb-97 17:32:50  YAMscripts.readme
  150.     4414    1778 59.7% 21-Feb-97 11:05:08  GrabAllURLs.rexx
  151.     3463    1491 56.9% 21-Feb-97 11:05:56  GrabURL.rexx
  152.     4629    1812 60.8% 21-Feb-97 11:04:18  MakeHotlist.rexx
  153.     6558    2697 58.8% 01-Apr-97 12:55:14  Join.rexx
  154.     5188    2185 57.8% 07-May-97 15:41:14  WholeStory.rexx
  155.     2118    1032 51.2% 14-Apr-97 17:06:02  AddXheader.rexx
  156.     1478     800 45.8% 16-May-97 14:50:28  ChangeConfig.rexx
  157.      976     558 42.8% 16-May-97 14:57:14  LoadConfig.rexx
  158.     2745    1252 54.3% 07-May-97 14:51:38  PGPread.rexx
  159.     1291     717 44.4% 07-May-97 14:48:02  PGPwrite.rexx
  160.     3061    1332 56.4% 04-Jan-97 17:14:34  Tagline2.rexx
  161.    11629    4148 64.3% 25-May-97 12:08:30  Fileserver2.rexx
  162.     1717     855 50.2% 25-May-97 12:09:18  FixQuotes.rexx
  163. -------- ------- ----- --------- --------
  164.    70229   29898 57.4% 25-May-97 20:36:04   21 files
  165.